home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / textutils_1_3.LHA / textutils-1.3 / src / uniq.c < prev    next >
C/C++ Source or Header  |  1992-06-29  |  7KB  |  322 lines

  1. /* uniq -- remove duplicate lines from a sorted file
  2.    Copyright (C) 1986, 1991 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by Richard Stallman and David MacKenzie. */
  19.  
  20. #define _GNU_SOURCE
  21. #include <ctype.h>
  22. #ifndef isblank
  23. #define isblank(c) ((c) == ' ' || (c) == '\t')
  24. #endif
  25. #include <stdio.h>
  26. #include <getopt.h>
  27. #include <sys/types.h>
  28. #include "system.h"
  29. #include "linebuffer.h"
  30.  
  31. #define min(x, y) ((x) < (y) ? (x) : (y))
  32.  
  33. char *find_field ();
  34. int different ();
  35. void check_file ();
  36. void error ();
  37. void usage ();
  38. void writeline ();
  39.  
  40. /* Number of fields to skip on each line when doing comparisons. */
  41. int skip_fields;
  42.  
  43. /* Number of chars to skip after skipping any fields. */
  44. int skip_chars;
  45.  
  46. /* Number of chars to compare; if 0, compare the whole lines. */
  47. int check_chars;
  48.  
  49. enum countmode
  50. {
  51.   count_occurrences,        /* -c Print count before output lines. */
  52.   count_none            /* Default.  Do not print counts. */
  53. };
  54.  
  55. /* Whether and how to precede the output lines with a count of the number of
  56.    times they occurred in the input. */
  57. enum countmode countmode;
  58.  
  59. enum output_mode
  60. {
  61.   output_repeated,        /* -d Only lines that are repeated. */
  62.   output_unique,        /* -u Only lines that are not repeated. */
  63.   output_all            /* Default.  Print first copy of each line. */
  64. };
  65.  
  66. /* Which lines to output. */
  67. enum output_mode mode;
  68.  
  69. /* The name this program was run with. */
  70. char *program_name;
  71.  
  72. struct option longopts[] =
  73. {
  74.   {"count", 0, NULL, 'c'},
  75.   {"repeated", 0, NULL, 'd'},
  76.   {"unique", 0, NULL, 'u'},
  77.   {"skip-fields", 1, NULL, 'f'},
  78.   {"skip-chars", 1, NULL, 's'},
  79.   {"check-chars", 1, NULL, 'w'},
  80.   {NULL, 0, NULL, 0}
  81. };
  82.  
  83. void
  84. main (argc, argv)
  85.      int argc;
  86.      char *argv[];
  87. {
  88.   int optc;
  89.   char *infile = "-", *outfile = "-";
  90.  
  91.   program_name = argv[0];
  92.   skip_chars = 0;
  93.   skip_fields = 0;
  94.   check_chars = 0;
  95.   mode = output_all;
  96.   countmode = count_none;
  97.  
  98.   while ((optc = getopt_long (argc, argv, "0123456789cdf:s:uw:", longopts,
  99.                   (int *) 0)) != EOF)
  100.     {
  101.       switch (optc)
  102.     {
  103.     case '0':
  104.     case '1':
  105.     case '2':
  106.     case '3':
  107.     case '4':
  108.     case '5':
  109.     case '6':
  110.     case '7':
  111.     case '8':
  112.     case '9':
  113.       skip_fields = skip_fields * 10 + optc - '0';
  114.       break;
  115.  
  116.     case 'c':
  117.       countmode = count_occurrences;
  118.       break;
  119.  
  120.     case 'd':
  121.       mode = output_repeated;
  122.       break;
  123.  
  124.     case 'f':        /* Like '-#'. */
  125.       skip_fields = atoi (optarg);
  126.       break;
  127.  
  128.     case 's':        /* Like '+#'. */
  129.       skip_chars = atoi (optarg);
  130.       break;
  131.  
  132.     case 'u':
  133.       mode = output_unique;
  134.       break;
  135.       
  136.     case 'w':
  137.       check_chars = atoi (optarg);
  138.       break;
  139.       
  140.     default:
  141.       usage ();
  142.     }
  143.     }
  144.  
  145.   while (optind < argc && argv[optind][0] == '+')
  146.     skip_chars = atoi (argv[optind++]);
  147.  
  148.   if (optind < argc)
  149.     infile = argv[optind++];
  150.  
  151.   if (optind < argc)
  152.     outfile = argv[optind++];
  153.  
  154.   if (optind < argc)
  155.     usage ();            /* Extra arguments. */
  156.  
  157.   check_file (infile, outfile);
  158.  
  159.   exit (0);
  160. }
  161.  
  162. /* Process input file INFILE with output to OUTFILE.
  163.    If either is "-", use the standard I/O stream for it instead. */
  164.  
  165. void
  166. check_file (infile, outfile)
  167.      char *infile, *outfile;
  168. {
  169.   FILE *istream;
  170.   FILE *ostream;
  171.   struct linebuffer lb1, lb2;
  172.   struct linebuffer *thisline, *prevline, *exch;
  173.   char *prevfield, *thisfield;
  174.   int prevlen, thislen;
  175.   int match_count = 0;
  176.  
  177.   if (!strcmp (infile, "-"))
  178.     istream = stdin;
  179.   else
  180.     istream = fopen (infile, "r");
  181.   if (istream == NULL)
  182.     error (1, errno, "%s", infile);
  183.  
  184.   if (!strcmp (outfile, "-"))
  185.     ostream = stdout;
  186.   else
  187.     ostream = fopen (outfile, "w");
  188.   if (ostream == NULL)
  189.     error (1, errno, "%s", outfile);
  190.  
  191.   thisline = &lb1;
  192.   prevline = &lb2;
  193.  
  194.   initbuffer (thisline);
  195.   initbuffer (prevline);
  196.  
  197.   if (readline (prevline, istream) == 0)
  198.     goto closefiles;
  199.   prevfield = find_field (prevline);
  200.   prevlen = prevline->length - (prevfield - prevline->buffer);
  201.  
  202.   while (!feof (istream))
  203.     {
  204.       if (readline (thisline, istream) == 0)
  205.     break;
  206.       thisfield = find_field (thisline);
  207.       thislen = thisline->length - (thisfield - thisline->buffer);
  208.       if (!different (thisfield, prevfield, thislen, prevlen))
  209.     match_count++;
  210.       else
  211.     {
  212.       writeline (prevline, ostream, match_count);
  213.       match_count = 0;
  214.  
  215.       exch = prevline;
  216.       prevline = thisline;
  217.       thisline = exch;
  218.       prevfield = thisfield;
  219.       prevlen = thislen;
  220.     }
  221.     }
  222.  
  223.   writeline (prevline, ostream, match_count);
  224.  
  225.  closefiles:
  226.   if (ferror (istream) || fclose (istream) == EOF)
  227.     error (1, errno, "error reading %s", infile);
  228.  
  229.   if (ferror (ostream) || fclose (ostream) == EOF)
  230.     error (1, errno, "error writing %s", outfile);
  231.  
  232.   free (lb1.buffer);
  233.   free (lb2.buffer);
  234. }
  235.  
  236. /* Given a linebuffer LINE,
  237.    return a pointer to the beginning of the line's field to be compared. */
  238.  
  239. char *
  240. find_field (line)
  241.      struct linebuffer *line;
  242. {
  243.   register int count;
  244.   register char *lp = line->buffer;
  245.   register int size = line->length;
  246.   register int i = 0;
  247.  
  248.   for (count = 0; count < skip_fields && i < size; count++)
  249.     {
  250.       while (i < size && isblank (lp[i]))
  251.     i++;
  252.       while (i < size && !isblank (lp[i]))
  253.     i++;
  254.     }
  255.  
  256.   for (count = 0; count < skip_chars && i < size; count++)
  257.     i++;
  258.  
  259.   return lp + i;
  260. }
  261.  
  262. /* Return zero if two strings OLD and NEW match, nonzero if not.
  263.    OLD and NEW point not to the beginnings of the lines
  264.    but rather to the beginnings of the fields to compare.
  265.    OLDLEN and NEWLEN are their lengths. */
  266.  
  267. int
  268. different (old, new, oldlen, newlen)
  269.      char *old;
  270.      char *new;
  271.      int oldlen;
  272.      int newlen;
  273. {
  274.   register int order;
  275.  
  276.   if (check_chars)
  277.     {
  278.       if (oldlen > check_chars)
  279.     oldlen = check_chars;
  280.       if (newlen > check_chars)
  281.     newlen = check_chars;
  282.     }
  283.   order = memcmp (old, new, min (oldlen, newlen));
  284.   if (order == 0)
  285.     return oldlen - newlen;
  286.   return order;
  287. }
  288.  
  289. /* Output the line in linebuffer LINE to stream STREAM
  290.    provided that the switches say it should be output.
  291.    If requested, print the number of times it occurred, as well;
  292.    LINECOUNT + 1 is the number of times that the line occurred. */
  293.  
  294. void
  295. writeline (line, stream, linecount)
  296.      struct linebuffer *line;
  297.      FILE *stream;
  298.      int linecount;
  299. {
  300.   if ((mode == output_unique && linecount != 0)
  301.       || (mode == output_repeated && linecount == 0))
  302.     return;
  303.  
  304.   if (countmode == count_occurrences)
  305.     fprintf (stream, "%7d\t", linecount + 1);
  306.  
  307.   fwrite (line->buffer, sizeof (char), line->length, stream);
  308.   putc ('\n', stream);
  309. }
  310.  
  311. void
  312. usage ()
  313. {
  314.   fprintf (stderr, "\
  315. Usage: %s [-cdu] [-f skip-fields] [-s skip-chars] [-w check-chars]\n\
  316.        [-#skip-fields] [+#skip-chars] [--count] [--repeated] [--unique]\n\
  317.        [--skip-fields=skip-fields] [--skip-chars=skip-chars]\n\
  318.        [--check-chars=check-chars] [infile] [outfile]\n",
  319.        program_name);
  320.   exit (1);
  321. }
  322.